home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DLLHELLO.PAK / MAKEFILE < prev    next >
Text File  |  1997-05-06  |  932b  |  26 lines

  1. #----------------------------------------------------------------------------
  2. # ObjectWindows
  3. # Copyright (c) 1991, 1995 by Borland International, All Rights Reserved
  4. #----------------------------------------------------------------------------
  5. !if !$d(MODEL)
  6.   MODEL = d
  7. !endif
  8.  
  9. !if !$d(WIN16) && !$d(WIN32)
  10.   WIN32 = 1
  11. !endif
  12.  
  13. MODELS = d          # force DLLs
  14. SYSTEMS = WIN16 WIN32
  15. EXERES = calldll
  16. LIBEXE = dllhello.lib
  17. DLLRES = dllhello                     # use this target for generating DLLRULE
  18. DLLALL = dllhello.dll resource.dll
  19. DLLMAKE= $(DLLHELLO) $(RESOURCE)
  20.  
  21. DLLHELLO = $(DLLRULE:dllhello.res=)     # no resource for this DLL
  22. RESOURCE = $(DLLRULE:dllhello=resource) # no code module used for resource DLL
  23. #TEMPRULE = $(DLLRULE:dllhello=resource) # change name for the other DLL
  24. #RESOURCE = $(TEMPRULE:resource.obj=)    # no code module used for resource DLL
  25. !include $(BCEXAMPLEDIR)\owlmake.gen
  26.